home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / crtex / ex2.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  246 b   |  13 lines

  1. Program Example2;
  2. uses Crt;
  3.  
  4. { Program to demonstrate the KeyPressed function. }
  5.  
  6. begin
  7.   WriteLn('Waiting until a key is pressed');
  8.   repeat
  9.   until KeyPressed;
  10.  { The key is not Read, 
  11.    so it should also be outputted at the commandline}
  12. end.
  13.